home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / cserial.zip / README < prev    next >
Text File  |  1990-04-04  |  2KB  |  47 lines

  1.                                8250
  2.                            Serial Chip
  3.                          Support Routines
  4.  
  5. The files in this archive are a collection of tools I have used to
  6. muck about with serial i/o on the PC. The code compiles under
  7. TurboC V1.5 (and also 2.0 I think), as well as Microsoft C V5.x,
  8. DataLight C, and Zortech C.  The various makefiles are included to
  9. make life easy.
  10.  
  11. This code is copyrighted by myself and you may use it in any way
  12. you see fit as long as you don't charge money for it and as long
  13. as the copyright notices remain in the sources.
  14.  
  15. There are several programs which can be made:
  16.  
  17.     1.  MDM_INIT - a little program to both tweek the serial port
  18.         and initialize a modem. as an example if you had a Hayes
  19.         on COM1: and you wanted to set it up at 2400 baud
  20.         autoanswer you could enter:
  21.  
  22.             mdm_init -b2400 -pn -d8 "S0=3"
  23.  
  24.     2.    MONITOR - looks at the data on a serial line and
  25.         displays the data on the screen (or if you redirect
  26.         stdout, it will place it in a file). Use the command
  27.  
  28.             monitor ?
  29.  
  30.         to get a succinct description of the command line
  31.         arguments.
  32.  
  33.     3.    VT100 - a real simple vt100 terminal emulator - all it
  34.         does is more or less emulate a vt100 (no alternate
  35.         character sets and it's missing some (most?) of the DEC
  36.         private stuff). <Alt>F10 exits the program, <Alt>F9 spawns
  37.         DOS (use the dos exit command to get back to the program),
  38.         and <Alt>F8 sends a break.  Use the command
  39.  
  40.             vt100 ?
  41.         
  42.         to get a succinct description of the command line
  43.         arguments.
  44.  
  45.                           ---   jb   ---
  46.                            Oct 11, 1989
  47.